home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / include / repair / status.h < prev    next >
C/C++ Source or Header  |  2006-01-09  |  702b  |  27 lines

  1. /* Copyright (C) 2001, 2002, 2003, 2004 by Hans Reiser, licensing governed by
  2.    reiser4progs/COPYING.
  3.    
  4.    status.h -- filesystem status block functions. */
  5.  
  6. #ifndef REPAIR_STATUS_H
  7. #define REPAIR_STATUS_H
  8.  
  9. #include <repair/repair.h>
  10.  
  11. extern errno_t repair_status_pack(reiser4_status_t *status, 
  12.                   aal_stream_t *stream);
  13.  
  14. extern void repair_status_state(reiser4_status_t *status,
  15.                 uint64_t state);
  16.  
  17. extern errno_t repair_status_open(reiser4_fs_t *fs, uint8_t mode);
  18.  
  19. extern reiser4_status_t *repair_status_unpack(aal_device_t *device,
  20.                           uint32_t blksize,
  21.                           aal_stream_t *stream);
  22.  
  23. extern void repair_status_print(reiser4_status_t *status,
  24.                 aal_stream_t *stream);
  25.  
  26. #endif
  27.